home *** CD-ROM | disk | FTP | other *** search
/ System Booster / System Booster.iso / Archives / ForCLI / 0Utils13.lha / 0Utils / Tackon.doc < prev    next >
Text File  |  1995-03-20  |  937b  |  54 lines

  1.  
  2.  
  3.     NAME
  4.     Tackon
  5.  
  6.     SYNOPSIS
  7.     Tackon - join path, filename and suffix - Requires v37
  8.  
  9.     FUNCTION
  10.     Tackon gets a filename and perhaps a pathname and a
  11.     suffix and creates a new filename out of them.
  12.  
  13.     To add correctly filename to pathname we use AmigaDOS.
  14.  
  15.     If the suffix starts with a "." or "_" (any non
  16.     alnum character), it is directly appended to the
  17.     full filename;
  18.     if suffix starts with an alphanumeric char,
  19.     a "." is prepended.
  20.  
  21.     The resulting string is sent to STDOUT
  22.  
  23.     INPUTS
  24.     PATH,NAME/A,SUFFIX
  25.  
  26.     RESULT
  27.     a filename created with the inputs.
  28.  
  29.     NOTES
  30.     CLI - only
  31.  
  32.     should compile with SAS-C
  33.  
  34.     BUGS
  35.     * there is no check (yet), if suffix is itself a path
  36.     * the resulting filename must not be bigger than 256 chars
  37.  
  38.     SEE ALSO
  39.     dos.library/AddPart
  40.  
  41.     EXAMPLES
  42.     >Tackon x: a:b _c
  43.     a:b_c
  44.  
  45.     >Tackon x:a b c
  46.     x:a/b.c
  47.  
  48.     AUTHOR
  49.     Bernd Noll, Brunnenstrasse 55, D-67661 Kaiserslautern
  50.     noll@student.uni-kl.de
  51.  
  52.  
  53.  
  54.